home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr48 / pasclern.zip / UGLYFORM.PAS < prev    next >
Pascal/Delphi Source File  |  1993-04-01  |  281b  |  8 lines

  1. PROGRAM ugly_programming_style;BEGIN  WRITE('Programming style ');WRITE
  2. ('is a matter of ');
  3. WRITELN('personal choice');WRITE('Each person ');
  4. WRITE('can choose ');WRITELN
  5. ('his own style');WRITE('He can be ');WRITE
  6.     ('very clear, or ');
  7. WRITELN('extremely messy');END.
  8.